home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / dev / c / vbcc.readme < prev   
Text File  |  2001-09-05  |  36KB  |  738 lines

  1. Short:    Optimizing ISO C compiler (68k/WarpOS/PowerUp/MorphOS)
  2. Author:   vb@compilers.de (Volker Barthelmann),frank@phoenix.owl.de (Frank Wille)
  3. Uploader: vb@compilers.de (Volker Barthelmann)
  4. Version:  0.8
  5. Type:     dev/c
  6. Replaces: dev/c/vbcc_ppc.* dev/c/vbccm68k.* dev/c/vbccm68ksrc.* dev/c/vbccppc.* dev/c/vbccppcnative.* dev/c/vbccppcsrc.* dev/c/vbccsrc.* dev/c/vbccwos.* dev/c/vbccwosnative.* dev/c/vbccwossrc.*
  7.  
  8.  
  9. vbcc - portable ISO/ANSI C compiler (c) in 1995-2001 by Volker Barthelmann
  10.  
  11.  
  12. INTRODUCTION
  13.  
  14.     vbcc is a portable and retargetable ISO/ANSI C compiler.
  15.  
  16.     This archive contains the compiler, preprocessor, assembler, linker,
  17.     frontend, message browser, startup codes, C-libraries, amiga.lib
  18.     replacements as well as several other tools to generate code for 
  19.     AmigaOS/68k, WarpOS, PowerUp and MorphOS.
  20.  
  21.     Many (but not all) tools in this distribution are provided as
  22.     binaries running on 68k as well as on different PPC systems.
  23.  
  24.     All major parts of this distribution (including compiler,
  25.     preprocessor, libraries etc.) have been built using this system.
  26.  
  27.  
  28. FEATURES
  29.  
  30.     vbcc..
  31.  
  32.     - is portable and retargetable
  33.  
  34.     - comes with a global optimizer that can e.g. do common subexpression
  35.       elimination, constant propagation, function inlining and several
  36.       other optimizations across functions and modules (depending on
  37.       optimization level)
  38.  
  39.     - should be compliant to ANSI/ISO89 and partially ISO99
  40.  
  41.     - can generate code that runs on a plain 68000 CPU
  42.  
  43.     - can generate code optimized for 020/030, 040 or 060
  44.  
  45.     - can generate code that uses the 68881/2, 68040/060 FPUs directly
  46.       and comes with appropriate math-libraries
  47.  
  48.     - can generate code that runs on PowerUp-boards or MorphOS systems
  49.  
  50.     - generates standard Amiga-68k-objects, PPC-ELF-objects or
  51.       WarpOS-EHF-objects
  52.  
  53.     - offers a lot of useful extensions like variable-attributes
  54.       and #pragmas
  55.  
  56.     - comes with a message browser
  57.  
  58.     - offers a lot of error/warning messages that can be turned on/off
  59.       separately
  60.  
  61.  
  62. WHAT'S NEW
  63.  
  64.     Some changes since the last Amiga release:
  65.  
  66.     - bug fixes in the compiler, optimizer, tools and libraries
  67.  
  68.     - improved code-generation
  69.  
  70.     - improved optimizations, including inter-procedural,
  71.       cross-module optimizations and alias-analysis
  72.  
  73.     - support for some c99 features, including
  74.       - long long
  75.       - flexible array members as last element of a struct
  76.       - mixed statements and declarations
  77.       - declarations within for-loops
  78.       - inline function-specifier
  79.       - restrict-qualifier
  80.       - vararg-macros
  81.       - _Pragma
  82.       - increased translation-limits
  83.       - stdint.h
  84.  
  85.     - stack-checking and measurement of stack-usage
  86.  
  87.     - documentation as pdf and html documents
  88.  
  89.     - new attributes (e.g. __amigainterrupt, __section)
  90.  
  91.     - new #pragmas for PPC (amiga-align etc.)
  92.  
  93.     - inline-headers for WarpOS PPC-native libraries
  94.  
  95.     - (backend-specific) predefined macros
  96.  
  97.     - improved libaries and headers
  98.  
  99.     - new versions of Frank Wille's assemblers and linkers
  100.  
  101.     - use of a builtin preprocessor
  102.  
  103.     - support for MorphOS
  104.  
  105.  
  106.  
  107. REQUIREMENTS
  108.  
  109.     To use vbcc you need:
  110.  
  111.     - an Amiga with OS 2.0 or higher
  112.  
  113.     - enough RAM (it is possible to translate small programs with 1MB, but
  114.       for larger programs much more will be needed)
  115.  
  116.     Stuff that is not needed, but may be very useful:
  117.  
  118.     - harddisk
  119.  
  120.     - editor
  121.  
  122.     - make, touch etc.
  123.  
  124.     - the Amiga OS-includes (they can be found on certain CDs)
  125.  
  126.     - pipe-command (to use the message browser)
  127.  
  128.     Also you should know how to use the shell and you should know ANSI C
  129.     (if you need a book I recommend (like everyone) "The C Programming
  130.     Language, Second Edition, ANSI C" by Kernighan and Ritchie).
  131.  
  132.  
  133. LEGAL
  134.  
  135.     Note that this distribution contains several programs, libraries etc.
  136.     that are from different authors and are under different legal status.
  137.     So always read the corresponding documentation to find out under
  138.     what conditions a certain file may be used, distributed etc.
  139.  
  140.     For the most part you can assume that you may use everything for
  141.     non-commercial purposes and may distribute the unchanged archive
  142.     in whole.
  143.  
  144.     Changing any parts from this archive, distributing parts of it or
  145.     using it commercially might be legal for certain parts, but illegal
  146.     for others, so read all docs carefully before doing any of the above.
  147.  
  148.  
  149. DOCUMENTATION
  150.  
  151.     Look for documentation in the doc-subdirectory. First, read
  152.     vbcc.pdf or vbcc.html to learn about the compiler and frontend.
  153.     For the other tools like assemblers and linkers, consider the
  154.     remaining documentation which can be found in this subdirectory.
  155.  
  156.  
  157. BUGREPORTS/COMMENTS
  158.  
  159.     If you think vbcc generates bad code, throws enforcer hits, crashes,
  160.     seems to be not ISO-compliant etc. and the problem is not mentioned
  161.     anywhere in this docs as known problem, please send a mail with your
  162.     system configuration, the vbcc version, the command line you used, the
  163.     source that caused the problem and a brief description of the problem
  164.     to
  165.  
  166.         vb@compilers.de           and/or
  167.         frank@phoenix.owl.de
  168.  
  169.     Also if you find problems with the includes, the libraries or you have
  170.     suggestions, dislikes etc. send us a mail.
  171.     Corrections, improvements etc. of the manuals are appreciated, too.
  172.  
  173.  
  174.  
  175. Volker Barthelmann                                   vb@compilers.de
  176. Frank Wille                                          frank@phoenix.owl.de
  177.  
  178.  
  179. ============================= Archive contents =============================
  180.  
  181. Original  Packed Ratio    Date     Time    Name
  182. -------- ------- ----- --------- --------  -------------
  183.    28112   14406 48.7% 28-Apr-01 10:05:48 +ar
  184.   105264   51912 50.6% 23-Jun-01 09:09:44 +fd2pragma
  185.     3458    1326 61.6% 23-Jun-01 09:09:44 +fd2pragma.types
  186.    12520    6472 48.3% 08-May-01 19:10:56 +FindHunkOffset
  187.     9448    5367 43.1% 07-Sep-99 16:54:54 +genauto
  188.     1352     885 34.5% 25-Jan-99 19:38:38 +ixstacksize
  189.    99212   41376 58.2% 28-Apr-01 10:01:40 +pasm
  190.   145440   55454 61.8% 28-Apr-01 10:01:32 +pasm_ppc
  191.   129184   51654 60.0% 28-Apr-01 10:01:32 +pasm_wos
  192.    65832   41991 36.2% 28-Apr-01 09:55:56 +PhxAss
  193.      536     378 29.4% 25-Jan-99 19:38:38 +showerr
  194.      568     402 29.2% 25-Jan-99 19:38:38 +tovbr
  195.   552160  221883 59.8% 23-Jun-01 09:11:40 +vbccm68k
  196.   865340  302036 65.0% 23-Jun-01 09:10:50 +vbccm68k_ppc
  197.   577120  215046 62.7% 23-Jun-01 09:11:58 +vbccm68k_wos
  198.   538432  215943 59.8% 23-Jun-01 09:11:48 +vbccppc
  199.   850468  295868 65.2% 23-Jun-01 09:10:50 +vbccppc_ppc
  200.   556552  207733 62.6% 23-Jun-01 09:11:54 +vbccppc_wos
  201.    13320    6791 49.0% 25-Jan-99 19:38:38 +vbrowse
  202.    28324   13611 51.9% 23-Jun-01 09:12:04 +vc
  203.    42296   17517 58.5% 28-Apr-01 10:06:14 +vda68k
  204.    32272   14141 56.1% 28-Apr-01 10:06:14 +vdappc
  205.   102424   48759 52.3% 26-Jun-01 21:04:34 +vlink
  206.   157956   62559 60.3% 26-Jun-01 21:04:38 +vlink_ppc
  207.   128428   53552 58.3% 26-Jun-01 21:04:42 +vlink_wos
  208.    12660    6724 46.8% 20-Jun-01 19:53:24 +vprof
  209.    47396   16762 64.6% 20-Jun-01 19:53:24 +vscppc
  210.    83900   27699 66.9% 11-Feb-01 20:11:06 +vscppc_ppc
  211.    69468   21128 69.5% 11-Feb-01 20:10:58 +vscppc_wos
  212.     8828    4372 50.4% 06-Dec-00 22:10:06 +vsend
  213.    77920   31956 58.9% 28-Apr-01 10:06:14 +wosdb
  214.      421     184 56.2% 28-Apr-01 09:46:24 +ixemul
  215.      421     184 56.2% 25-Jun-01 16:59:30 +ixemul_m68k
  216.      445     190 57.3% 25-Jun-01 17:04:36 +ixemul_ppc
  217.      444     188 57.6% 25-Jun-01 17:03:22 +ixemul_warpos
  218.      438     184 57.9% 21-Jun-01 20:31:04 +m68k
  219.      402     171 57.4% 21-Jun-01 20:31:06 +m68kdb
  220.      402     171 57.4% 25-Jun-01 16:59:46 +m68kdb_m68k
  221.      426     179 57.9% 27-Jun-01 20:19:06 +m68kdb_ppc
  222.      426     178 58.2% 21-Jun-01 20:31:08 +m68kdb_warpos
  223.      438     184 57.9% 25-Jun-01 16:59:42 +m68k_m68k
  224.      462     190 58.8% 21-Jun-01 20:31:12 +m68k_ppc
  225.      462     188 59.3% 21-Jun-01 20:31:14 +m68k_warpos
  226.      611     244 60.0% 28-Apr-01 09:46:24 +morphos
  227.      611     244 60.0% 25-Jun-01 16:59:58 +morphos_m68k
  228.      651     252 61.2% 25-Jun-01 17:06:00 +morphos_ppc
  229.      651     253 61.1% 28-Apr-01 09:46:24 +morphos_warpos
  230.      632     248 60.7% 28-Apr-01 09:46:24 +ppc
  231.      632     248 60.7% 25-Jun-01 17:00:02 +ppc_m68k
  232.      691     253 63.3% 28-Apr-01 09:46:24 +ppc_ppc
  233.      692     254 63.2% 28-Apr-01 09:46:24 +ppc_warpos
  234.      438     184 57.9% 26-Jun-01 21:24:06 +vc.config
  235.      617     239 61.2% 28-Apr-01 09:46:24 +warpos
  236.      593     235 60.3% 28-Apr-01 09:46:24 +warposdb
  237.      593     235 60.3% 25-Jun-01 17:00:12 +warposdb_m68k
  238.      621     239 61.5% 25-Jun-01 17:05:56 +warposdb_ppc
  239.      621     238 61.6% 28-Apr-01 09:46:26 +warposdb_warpos
  240.      617     239 61.2% 25-Jun-01 17:00:10 +warpos_m68k
  241.      657     245 62.7% 28-Apr-01 09:46:24 +warpos_ppc
  242.      657     244 62.8% 28-Apr-01 09:46:24 +warpos_warpos
  243.    85062   28018 67.0% 23-Jun-01 09:32:34 +fd2pragma.guide
  244.    46165    8438 81.7% 28-Apr-01 09:53:40 +pasm.doc
  245.   140938   48482 65.6% 28-Apr-01 09:52:42 +PhxAss.guide
  246.      177     126 28.8% 27-Jun-01 20:35:40 +vbcc.html
  247.   327917  219426 33.0% 27-Jun-01 20:35:40 +vbcc.pdf
  248.    72511   14238 80.3% 11-Feb-01 19:54:18 +VBCCMessages.guide
  249.    14134    4918 65.2% 27-Jun-01 20:35:40 +vbcc_1.html
  250.    12194    4054 66.7% 27-Jun-01 20:35:40 +vbcc_2.html
  251.    72641   20819 71.3% 27-Jun-01 20:35:40 +vbcc_3.html
  252.    19119    6294 67.0% 27-Jun-01 20:35:40 +vbcc_4.html
  253.    14169    4591 67.5% 27-Jun-01 20:35:40 +vbcc_5.html
  254.     4314    1595 63.0% 27-Jun-01 20:35:40 +vbcc_6.html
  255.    31216    8568 72.5% 27-Jun-01 20:35:40 +vbcc_7.html
  256.    40989   10341 74.7% 27-Jun-01 20:35:40 +vbcc_8.html
  257.     3731    1269 65.9% 27-Jun-01 20:35:40 +vbcc_abt.html
  258.      177     128 27.6% 27-Jun-01 20:35:40 +vbcc_frame.html
  259.     2229     937 57.9% 27-Jun-01 20:35:40 +vbcc_ovr.html
  260.    10007    2508 74.9% 27-Jun-01 20:35:40 +vbcc_toc.html
  261.     1522     672 55.8% 27-Jun-01 20:35:40 +vbcc_toc_frame.html
  262.     3466    1415 59.1% 11-Feb-01 19:54:18 +vbrowse.doc
  263.     9657    3495 63.8% 28-Apr-01 09:53:46 +vlink.doc
  264.      771     409 46.9% 28-Apr-01 09:53:14 +vprof.doc
  265.     2930    1297 55.7% 25-Jun-01 17:07:34 +wosdb.doc
  266.      895     263 70.6% 20-Jun-01 19:52:42 +init_vbcc
  267.     2696     615 77.1% 27-Jun-01 21:33:06 +init_vbcc_new
  268.      320     205 35.9% 28-Apr-01 09:49:48 +assert.h
  269.     1216     369 69.6% 28-Apr-01 09:49:48 +ctype.h
  270.     5459    1896 65.2% 28-Apr-01 09:49:48 +errno.h
  271.      322     174 45.9% 28-Apr-01 09:49:48 +extra.h
  272.     1067     342 67.9% 28-Apr-01 09:49:48 +float.h
  273.     5034     964 80.8% 27-Jun-01 20:14:42 +ahi_protos.h
  274.     4327     789 81.7% 27-Jun-01 20:14:42 +ahi_sub_protos.h
  275.     3927     806 79.4% 27-Jun-01 20:14:44 +amigaguide_protos.h
  276.     1985     449 77.3% 27-Jun-01 20:14:44 +amigamesa_protos.h
  277.    12462    1779 85.7% 27-Jun-01 20:14:46 +aml_protos.h
  278.      272     175 35.6% 27-Jun-01 20:14:46 +arexx_protos.h
  279.     1273     367 71.1% 27-Jun-01 20:14:44 +asl_protos.h
  280.      980     273 72.1% 20-Mar-99 12:15:50 +asl_protos.h_
  281.      582     248 57.3% 27-Jun-01 20:14:44 +battclock_protos.h
  282.      964     317 67.1% 27-Jun-01 20:14:44 +battmem_protos.h
  283.      272     174 36.0% 27-Jun-01 20:14:46 +bevel_protos.h
  284.      279     177 36.5% 27-Jun-01 20:14:46 +bitmap_protos.h
  285.     1200     321 73.2% 27-Jun-01 20:14:44 +bullet_protos.h
  286.      279     177 36.5% 27-Jun-01 20:14:46 +button_protos.h
  287.     3479     747 78.5% 27-Jun-01 20:14:44 +cardres_protos.h
  288.     2744     740 73.0% 27-Jun-01 20:14:44 +cgxdither_protos.h
  289.     1030     332 67.7% 27-Jun-01 20:14:44 +cgxsystem_protos.h
  290.     2073     460 77.8% 27-Jun-01 20:14:44 +cgxvideo_protos.h
  291.      293     182 37.8% 27-Jun-01 20:14:46 +checkbox_protos.h
  292.     1597     428 73.1% 27-Jun-01 20:14:46 +chooser_protos.h
  293.     1391     416 70.0% 27-Jun-01 20:14:44 +chunkyppc_protos.h
  294.      265     170 35.8% 27-Jun-01 20:14:44 +cia_protos.h
  295.     1147     323 71.8% 27-Jun-01 20:14:46 +clicktab_protos.h
  296.      628     266 57.6% 27-Jun-01 20:14:44 +colorwheel_protos.h
  297.     4896    1021 79.1% 27-Jun-01 20:14:44 +commodities_protos.h
  298.      747     312 58.2% 27-Jun-01 20:14:44 +console_protos.h
  299.     6179    1170 81.0% 27-Jun-01 20:14:44 +cybergraphics_protos.h
  300.     3572     767 78.5% 27-Jun-01 20:14:44 +datatypes_protos.h
  301.      718     297 58.6% 27-Jun-01 20:14:46 +datebrowser_protos.h
  302.     1390     444 68.0% 27-Jun-01 20:14:44 +diskfont_protos.h
  303.     1084     324 70.1% 27-Jun-01 20:14:44 +disk_protos.h
  304.    31903    5338 83.2% 27-Jun-01 20:14:44 +dos_protos.h
  305.      293     180 38.5% 27-Jun-01 20:14:46 +drawlist_protos.h
  306.      274     180 34.3% 27-Jun-01 20:14:46 +dtclass_protos.h
  307.    22611    3693 83.6% 27-Jun-01 20:14:46 +exec_protos.h
  308.     5050     913 81.9% 27-Jun-01 20:14:46 +expansion_protos.h
  309.      300     181 39.6% 27-Jun-01 20:14:44 +fuelgauge_protos.h
  310.     4609     967 79.0% 27-Jun-01 20:14:46 +gadtools_protos.h
  311.      286     178 37.7% 27-Jun-01 20:14:44 +getfile_protos.h
  312.      286     179 37.4% 27-Jun-01 20:14:44 +getfont_protos.h
  313.      328     190 42.0% 27-Jun-01 20:14:44 +getscreenmode_protos.h
  314.     5018     748 85.0% 27-Jun-01 20:14:46 +gle_protos.h
  315.     9549    1215 87.2% 27-Jun-01 20:14:46 +glsmap_protos.h
  316.    20436    2757 86.5% 27-Jun-01 20:14:46 +glut_protos.h
  317.    11147    1861 83.3% 27-Jun-01 20:14:46 +glu_protos.h
  318.      272     174 36.0% 27-Jun-01 20:14:44 +glyph_protos.h
  319.    95407   10249 89.2% 27-Jun-01 20:14:46 +gl_protos.h
  320.    38114    6196 83.7% 27-Jun-01 20:14:44 +graphics_protos.h
  321.     5518    1170 78.7% 27-Jun-01 20:14:44 +hdwrench_protos.h
  322.     2555     607 76.2% 27-Jun-01 20:14:44 +icon_protos.h
  323.     9520    1464 84.6% 27-Jun-01 20:14:46 +iffparse_protos.h
  324.      266     179 32.7% 27-Jun-01 20:14:46 +input_protos.h
  325.      286     178 37.7% 27-Jun-01 20:14:44 +integer_protos.h
  326.    31365    4991 84.0% 27-Jun-01 20:14:46 +intuition_protos.h
  327.     1107     370 66.5% 27-Jun-01 20:14:46 +keymap_protos.h
  328.      272     174 36.0% 27-Jun-01 20:14:44 +label_protos.h
  329.     7957    1216 84.7% 27-Jun-01 20:14:46 +layers_protos.h
  330.     2401     587 75.5% 27-Jun-01 20:14:44 +layout_protos.h
  331.     2530     516 79.6% 27-Jun-01 20:14:44 +listbrowser_protos.h
  332.     6131     988 83.8% 27-Jun-01 20:14:46 +locale_protos.h
  333.     3037     711 76.5% 27-Jun-01 20:14:46 +lowlevel_protos.h
  334.     2086     436 79.0% 27-Jun-01 20:14:46 +mathffp_protos.h
  335.      345     208 39.7% 27-Jun-01 20:14:46 +mathieeedoubbas_protos.h
  336.      358     216 39.6% 27-Jun-01 20:14:46 +mathieeedoubtrans_protos.h
  337.     2440     475 80.5% 27-Jun-01 20:14:46 +mathieeesingbas_protos.h
  338.     3083     505 83.6% 27-Jun-01 20:14:46 +mathieeesingtrans_protos.h
  339.     2649     492 81.4% 27-Jun-01 20:14:44 +mathtrans_protos.h
  340.      551     256 53.5% 27-Jun-01 20:14:44 +misc_protos.h
  341.     5902    1190 79.8% 27-Jun-01 20:14:44 +muimaster_protos.h
  342.     1936     482 75.1% 27-Jun-01 20:14:44 +nonvolatile_protos.h
  343.     6243    1139 81.7% 27-Jun-01 20:14:44 +P96_protos.h
  344.      286     178 37.7% 27-Jun-01 20:14:44 +palette_protos.h
  345.      279     177 36.5% 27-Jun-01 20:14:44 +penmap_protos.h
  346.     5370     955 82.2% 27-Jun-01 20:14:46 +Picasso96_protos.h
  347.     1147     319 72.1% 27-Jun-01 20:14:44 +popcycle_protos.h
  348.      668     274 58.9% 27-Jun-01 20:14:44 +potgo_protos.h
  349.     2676     716 73.2% 27-Jun-01 20:14:46 +powerpc_protos.h
  350.      793     285 64.0% 27-Jun-01 20:14:46 +ppcdiss_protos.h
  351.     9892    1434 85.5% 27-Jun-01 20:14:46 +ppc_protos.h
  352.     1263     351 72.2% 27-Jun-01 20:14:44 +radiobutton_protos.h
  353.      419     221 47.2% 27-Jun-01 20:14:44 +ramdrive_protos.h
  354.     2328     557 76.0% 27-Jun-01 20:14:44 +realtime_protos.h
  355.      300     182 39.3% 27-Jun-01 20:14:44 +requester_protos.h
  356.     2215     541 75.5% 27-Jun-01 20:14:44 +rexxsyslib_protos.h
  357.    13526    2076 84.6% 27-Jun-01 20:14:46 +rtgmaster_protos.h
  358.      293     181 38.2% 27-Jun-01 20:14:44 +scroller_protos.h
  359.      279     176 36.9% 27-Jun-01 20:14:44 +slider_protos.h
  360.     9900    1839 81.4% 27-Jun-01 20:14:42 +socket_protos.h
  361.      272     174 36.0% 27-Jun-01 20:14:44 +space_protos.h
  362.     1227     351 71.3% 27-Jun-01 20:14:44 +speedbar_protos.h
  363.      279     177 36.5% 27-Jun-01 20:14:44 +string_protos.h
  364.      307     185 39.7% 27-Jun-01 20:14:44 +texteditor_protos.h
  365.      300     182 39.3% 27-Jun-01 20:14:42 +textfield_protos.h
  366.     1049     305 70.9% 27-Jun-01 20:14:44 +timer_protos.h
  367.      508     260 48.8% 27-Jun-01 20:14:44 +translator_protos.h
  368.     8778    1556 82.2% 27-Jun-01 20:14:44 +utility_protos.h
  369.    17603    2732 84.4% 27-Jun-01 20:14:42 +Warp3D_protos.h
  370.     2261     583 74.2% 27-Jun-01 20:14:44 +wb_protos.h
  371.      279     178 36.2% 27-Jun-01 20:14:42 +window_protos.h
  372.     8116    1549 80.9% 27-Jun-01 20:14:42 +wizard_protos.h
  373.      678     280 58.7% 28-Apr-01 09:49:48 +limits.h
  374.      969     358 63.0% 28-Apr-01 09:49:50 +locale.h
  375.     2066     519 74.8% 28-Apr-01 09:49:48 +math.h
  376.      408     214 47.5% 27-Jun-01 20:14:30 +ahi.h
  377.      443     223 49.6% 27-Jun-01 20:14:30 +ahi_sub.h
  378.     1161     289 75.1% 27-Jun-01 20:14:30 +all.h
  379.      471     232 50.7% 27-Jun-01 20:14:30 +amigaguide.h
  380.      252     159 36.9% 27-Jun-01 20:14:32 +amigamesa.h
  381.      408     215 47.3% 27-Jun-01 20:14:28 +aml.h
  382.      426     221 48.1% 27-Jun-01 20:14:28 +arexx.h
  383.      408     214 47.5% 27-Jun-01 20:14:30 +asl.h
  384.      462     229 50.4% 27-Jun-01 20:14:30 +battclock.h
  385.      444     224 49.5% 27-Jun-01 20:14:30 +battmem.h
  386.      426     219 48.5% 27-Jun-01 20:14:28 +bevel.h
  387.      435     223 48.7% 27-Jun-01 20:14:28 +bitmap.h
  388.      435     220 49.4% 27-Jun-01 20:14:30 +bullet.h
  389.      435     221 49.1% 27-Jun-01 20:14:28 +button.h
  390.      445     222 50.1% 27-Jun-01 20:14:30 +cardres.h
  391.      462     228 50.6% 27-Jun-01 20:14:30 +cgxdither.h
  392.      462     228 50.6% 27-Jun-01 20:14:30 +cgxsystem.h
  393.      453     226 50.1% 27-Jun-01 20:14:30 +cgxvideo.h
  394.      453     227 49.8% 27-Jun-01 20:14:28 +checkbox.h
  395.      444     221 50.2% 27-Jun-01 20:14:28 +chooser.h
  396.      462     229 50.4% 27-Jun-01 20:14:30 +chunkyppc.h
  397.      164     116 29.2% 27-Jun-01 20:14:32 +cia.h
  398.      453     225 50.3% 27-Jun-01 20:14:28 +clicktab.h
  399.      471     231 50.9% 27-Jun-01 20:14:30 +colorwheel.h
  400.      471     227 51.8% 27-Jun-01 20:14:30 +commodities.h
  401.      445     219 50.7% 27-Jun-01 20:14:30 +console.h
  402.      493     236 52.1% 27-Jun-01 20:14:30 +cybergraphics.h
  403.      462     223 51.7% 27-Jun-01 20:14:30 +datatypes.h
  404.      480     233 51.4% 27-Jun-01 20:14:28 +datebrowser.h
  405.      422     221 47.6% 27-Jun-01 20:14:32 +disk.h
  406.      453     225 50.3% 27-Jun-01 20:14:32 +diskfont.h
  407.      411     216 47.4% 27-Jun-01 20:14:32 +dos.h
  408.      453     227 49.8% 27-Jun-01 20:14:28 +drawlist.h
  409.      444     221 50.2% 27-Jun-01 20:14:32 +dtclass.h
  410.      417     212 49.1% 27-Jun-01 20:14:32 +exec.h
  411.      468     223 52.3% 27-Jun-01 20:14:32 +expansion.h
  412.      462     230 50.2% 27-Jun-01 20:14:28 +fuelgauge.h
  413.      453     226 50.1% 27-Jun-01 20:14:32 +gadtools.h
  414.      444     224 49.5% 27-Jun-01 20:14:28 +getfile.h
  415.      444     224 49.5% 27-Jun-01 20:14:28 +getfont.h
  416.      498     238 52.2% 27-Jun-01 20:14:30 +getscreenmode.h
  417.      231     148 35.9% 27-Jun-01 20:14:32 +gl.h
  418.      235     149 36.5% 27-Jun-01 20:14:32 +gle.h
  419.      247     153 38.0% 27-Jun-01 20:14:32 +glsmap.h
  420.      235     149 36.5% 27-Jun-01 20:14:32 +glu.h
  421.      239     152 36.4% 27-Jun-01 20:14:32 +glut.h
  422.      426     220 48.3% 27-Jun-01 20:14:30 +glyph.h
  423.      448     220 50.8% 27-Jun-01 20:14:32 +graphics.h
  424.      448     224 50.0% 27-Jun-01 20:14:30 +hdwrench.h
  425.      417     216 48.2% 27-Jun-01 20:14:32 +icon.h
  426.      453     225 50.3% 27-Jun-01 20:14:32 +iffparse.h
  427.      425     219 48.4% 27-Jun-01 20:14:32 +input.h
  428.      444     222 50.0% 27-Jun-01 20:14:30 +integer.h
  429.      468     222 52.5% 27-Jun-01 20:14:32 +intuition.h
  430.      435     223 48.7% 27-Jun-01 20:14:32 +keymap.h
  431.      426     219 48.5% 27-Jun-01 20:14:30 +label.h
  432.      435     220 49.4% 27-Jun-01 20:14:32 +layers.h
  433.      435     221 49.1% 27-Jun-01 20:14:30 +layout.h
  434.      480     232 51.6% 27-Jun-01 20:14:30 +listbrowser.h
  435.      438     218 50.2% 27-Jun-01 20:14:32 +locale.h
  436.      453     227 49.8% 27-Jun-01 20:14:32 +lowlevel.h
  437.      441     223 49.4% 27-Jun-01 20:14:30 +mathffp.h
  438.      521     242 53.5% 27-Jun-01 20:14:30 +mathieeedoubbas.h
  439.      539     247 54.1% 27-Jun-01 20:14:30 +mathieeedoubtrans.h
  440.      521     242 53.5% 27-Jun-01 20:14:30 +mathieeesingbas.h
  441.      539     246 54.3% 27-Jun-01 20:14:30 +mathieeesingtrans.h
  442.      462     228 50.6% 27-Jun-01 20:14:30 +mathtrans.h
  443.      417     217 47.9% 27-Jun-01 20:14:30 +misc.h
  444.      453     225 50.3% 27-Jun-01 20:14:30 +muiclass.h
  445.      462     228 50.6% 27-Jun-01 20:14:30 +muimaster.h
  446.      455     226 50.3% 27-Jun-01 20:14:30 +multiuser.h
  447.      471     228 51.5% 27-Jun-01 20:14:30 +nonvolatile.h
  448.      408     215 47.3% 27-Jun-01 20:14:30 +P96.h
  449.      444     221 50.2% 27-Jun-01 20:14:30 +palette.h
  450.      435     223 48.7% 27-Jun-01 20:14:30 +penmap.h
  451.      215     132 38.6% 27-Jun-01 20:14:32 +Picasso96.h
  452.      453     225 50.3% 27-Jun-01 20:14:30 +popcycle.h
  453.      426     220 48.3% 27-Jun-01 20:14:30 +potgo.h
  454.      444     224 49.5% 27-Jun-01 20:14:30 +powerpc.h
  455.      411     217 47.2% 27-Jun-01 20:14:30 +ppc.h
  456.      444     222 50.0% 27-Jun-01 20:14:30 +ppcdiss.h
  457.      480     233 51.4% 27-Jun-01 20:14:30 +radiobutton.h
  458.      454     224 50.6% 27-Jun-01 20:14:30 +ramdrive.h
  459.      458     223 51.3% 27-Jun-01 20:14:30 +realtime.h
  460.      458     223 51.3% 27-Jun-01 20:14:30 +reqtools.h
  461.      462     226 51.0% 27-Jun-01 20:14:30 +requester.h
  462.      467     227 51.3% 27-Jun-01 20:14:30 +rexxsyslib.h
  463.      462     227 50.8% 27-Jun-01 20:14:30 +rtgmaster.h
  464.      453     223 50.7% 27-Jun-01 20:14:30 +scroller.h
  465.      435     221 49.1% 27-Jun-01 20:14:30 +slider.h
  466.      435     221 49.1% 27-Jun-01 20:14:30 +socket.h
  467.      426     219 48.5% 27-Jun-01 20:14:30 +space.h
  468.      453     226 50.1% 27-Jun-01 20:14:30 +speedbar.h
  469.      435     221 49.1% 27-Jun-01 20:14:30 +string.h
  470.      471     229 51.3% 27-Jun-01 20:14:30 +texteditor.h
  471.      462     229 50.4% 27-Jun-01 20:14:30 +textfield.h
  472.      425     219 48.4% 27-Jun-01 20:14:32 +timer.h
  473.      471     226 52.0% 27-Jun-01 20:14:32 +translator.h
  474.      435     221 49.1% 27-Jun-01 20:14:30 +triton.h
  475.      448     220 50.8% 27-Jun-01 20:14:32 +utility.h
  476.      435     223 48.7% 27-Jun-01 20:14:30 +Warp3D.h
  477.      406     219 46.0% 27-Jun-01 20:14:32 +wb.h
  478.      435     222 48.9% 27-Jun-01 20:14:30 +window.h
  479.      435     224 48.5% 27-Jun-01 20:14:32 +wizard.h
  480.      166     120 27.7% 28-Apr-01 09:49:50 +setjmp.h
  481.      390     200 48.7% 28-Apr-01 09:49:50 +signal.h
  482.      576     261 54.6% 28-Apr-01 09:49:50 +stdarg.h
  483.      395     192 51.3% 28-Apr-01 09:49:48 +stddef.h
  484.     2730     569 79.1% 28-Apr-01 09:49:48 +stdint.h
  485.     4883    1593 67.3% 28-Apr-01 09:49:48 +stdio.h
  486.     2241     681 69.6% 28-Apr-01 09:49:48 +stdlib.h
  487.     5810     916 84.2% 28-Apr-01 09:49:48 +string.h
  488.     1028     391 61.9% 28-Apr-01 09:49:48 +time.h
  489.   345004   58476 83.0% 23-Jun-01 09:24:42 +amiga.lib
  490.   341840   58427 82.9% 23-Jun-01 09:24:42 +amigas.lib
  491.    63292    6129 90.3% 23-Jun-01 09:24:42 +auto.lib
  492.    62916    6138 90.2% 23-Jun-01 09:24:42 +autos.lib
  493.     1520     915 39.8% 02-May-01 20:16:32 +crt0.o
  494.     4072    1587 61.0% 02-May-01 20:16:32 +extra.lib
  495.     3956    1589 59.8% 02-May-01 20:16:32 +extras.lib
  496.   107748   16219 84.9% 23-Jun-01 09:24:42 +gl.lib
  497.    40500   10425 74.2% 23-Jun-01 09:24:42 +glaux.lib
  498.     3356    1074 67.9% 23-Jun-01 09:24:42 +gle.lib
  499.     8948    1667 81.3% 23-Jun-01 09:24:42 +glsmap.lib
  500.   175684   48446 72.4% 23-Jun-01 09:24:42 +gltk.lib
  501.    60112    7645 87.2% 02-May-01 20:16:32 +ixemul.lib
  502.    28916   13925 51.8% 02-May-01 20:16:32 +m040.lib
  503.    16808    6507 61.2% 02-May-01 20:16:32 +m881.lib
  504.    26480    8327 68.5% 02-May-01 20:16:32 +mieee.lib
  505.      248     172 30.6% 02-May-01 20:16:32 +minstart.o
  506.     1288     890 30.9% 02-May-01 20:16:32 +startup.o
  507.    48000   17771 62.9% 02-May-01 20:16:32 +vc.lib
  508.    61408   22196 63.8% 02-May-01 20:16:32 +vcs.lib
  509.      320     205 35.9% 28-Apr-01 09:50:18 +assert.h
  510.      845     287 66.0% 28-Apr-01 09:50:18 +ctype.h
  511.     5459    1896 65.2% 28-Apr-01 09:50:18 +errno.h
  512.      322     174 45.9% 28-Apr-01 09:50:18 +extra.h
  513.     1067     342 67.9% 28-Apr-01 09:50:18 +float.h
  514.      678     280 58.7% 28-Apr-01 09:50:18 +limits.h
  515.      969     358 63.0% 28-Apr-01 09:50:18 +locale.h
  516.      669     240 64.1% 28-Apr-01 09:50:18 +math.h
  517.     1161     289 75.1% 28-Apr-01 09:50:18 +all.h
  518.      161     126 21.7% 28-Apr-01 09:50:18 +amigaguide.h
  519.      133     108 18.7% 28-Apr-01 09:50:18 +asl.h
  520.      157     120 23.5% 28-Apr-01 09:50:18 +battclock.h
  521.      149     117 21.4% 28-Apr-01 09:50:18 +battmem.h
  522.      145     114 21.3% 28-Apr-01 09:50:18 +bullet.h
  523.      150     118 21.3% 28-Apr-01 09:50:18 +cardres.h
  524.      156     122 21.7% 28-Apr-01 09:50:18 +chunkyppc.h
  525.      133     108 18.7% 28-Apr-01 09:50:18 +cia.h
  526.      161     123 23.6% 28-Apr-01 09:50:18 +colorwheel.h
  527.      156     121 22.4% 28-Apr-01 09:50:18 +commodities.h
  528.      151     117 22.5% 28-Apr-01 09:50:18 +console.h
  529.      185     130 29.7% 28-Apr-01 09:50:20 +cybergraphics.h
  530.      157     122 22.2% 28-Apr-01 09:50:20 +datatypes.h
  531.      138     112 18.8% 28-Apr-01 09:50:20 +disk.h
  532.      153     118 22.8% 28-Apr-01 09:50:20 +diskfont.h
  533.      136     111 18.3% 28-Apr-01 09:50:20 +dos.h
  534.      149     117 21.4% 28-Apr-01 09:50:20 +dtclass.h
  535.      169     115 31.9% 28-Apr-01 09:50:20 +exec.h
  536.      157     121 22.9% 28-Apr-01 09:50:20 +expansion.h
  537.      153     119 22.2% 28-Apr-01 09:50:20 +gadtools.h
  538.      148     116 21.6% 28-Apr-01 09:50:20 +graphics.h
  539.      137     111 18.9% 28-Apr-01 09:50:20 +icon.h
  540.      153     119 22.2% 28-Apr-01 09:50:20 +iffparse.h
  541.      141     113 19.8% 28-Apr-01 09:50:20 +input.h
  542.      163     114 30.0% 28-Apr-01 09:50:20 +intuition.h
  543.      145     117 19.3% 28-Apr-01 09:50:20 +keymap.h
  544.      145     116 20.0% 28-Apr-01 09:50:20 +layers.h
  545.      145     114 21.3% 28-Apr-01 09:50:20 +locale.h
  546.      153     120 21.5% 28-Apr-01 09:50:20 +lowlevel.h
  547.      136     111 18.3% 28-Apr-01 09:50:20 +misc.h
  548.      156     121 22.4% 28-Apr-01 09:50:20 +nonvolatile.h
  549.      178     126 29.2% 28-Apr-01 09:50:20 +Picasso96.h
  550.      141     112 20.5% 28-Apr-01 09:50:20 +potgo.h
  551.      155     120 22.5% 28-Apr-01 09:50:20 +ramdrive.h
  552.      153     119 22.2% 28-Apr-01 09:50:20 +realtime.h
  553.      158     124 21.5% 28-Apr-01 09:50:20 +rexxsyslib.h
  554.      162     117 27.7% 28-Apr-01 09:50:20 +rtgmaster.h
  555.      141     113 19.8% 28-Apr-01 09:50:20 +timer.h
  556.      161     119 26.0% 28-Apr-01 09:50:20 +translator.h
  557.      149     117 21.4% 28-Apr-01 09:50:20 +utility.h
  558.      136     113 16.9% 28-Apr-01 09:50:20 +wb.h
  559.      192     138 28.1% 28-Apr-01 09:50:18 +setjmp.h
  560.      390     200 48.7% 28-Apr-01 09:50:18 +signal.h
  561.     1508     538 64.3% 28-Apr-01 09:50:18 +stdarg.h
  562.      396     192 51.5% 28-Apr-01 09:50:18 +stddef.h
  563.     2730     569 79.1% 28-Apr-01 09:50:20 +stdint.h
  564.     4883    1593 67.3% 28-Apr-01 09:50:18 +stdio.h
  565.     2236     686 69.3% 28-Apr-01 09:50:20 +stdlib.h
  566.     2708     595 78.0% 28-Apr-01 09:50:20 +string.h
  567.     1028     391 61.9% 28-Apr-01 09:50:20 +time.h
  568.   992988   78666 92.0% 23-Jun-01 09:26:12 +libamiga.a
  569.   970156   78157 91.9% 23-Jun-01 09:26:12 +libamigas.a
  570.   152118    9308 93.8% 23-Jun-01 09:26:12 +libauto.a
  571.   137274    9487 93.0% 23-Jun-01 09:26:12 +libautos.a
  572.    17408    4288 75.3% 02-May-01 20:15:58 +libextra.a
  573.     7916    1978 75.0% 25-Jun-01 20:50:06 +libextras.a
  574.    68220   32789 51.9% 23-Jun-01 09:26:12 +libm.a
  575.   116676   25261 78.3% 23-Jun-01 09:26:12 +libvc.a
  576.   113450   24272 78.6% 25-Jun-01 20:50:06 +libvcs.a
  577.     3520    1780 49.4% 02-May-01 20:16:00 +startup.o
  578.      320     205 35.9% 28-Apr-01 09:50:04 +assert.h
  579.      845     287 66.0% 28-Apr-01 09:50:04 +ctype.h
  580.     5459    1896 65.2% 28-Apr-01 09:50:04 +errno.h
  581.      322     174 45.9% 28-Apr-01 09:50:04 +extra.h
  582.     1067     342 67.9% 28-Apr-01 09:50:04 +float.h
  583.      678     280 58.7% 28-Apr-01 09:50:04 +limits.h
  584.      969     358 63.0% 28-Apr-01 09:50:04 +locale.h
  585.      669     240 64.1% 28-Apr-01 09:50:04 +math.h
  586.     1161     289 75.1% 28-Apr-01 09:50:04 +all.h
  587.      161     126 21.7% 28-Apr-01 09:50:04 +amigaguide.h
  588.      133     108 18.7% 28-Apr-01 09:50:04 +asl.h
  589.      157     120 23.5% 28-Apr-01 09:50:04 +battclock.h
  590.      149     117 21.4% 28-Apr-01 09:50:04 +battmem.h
  591.      145     114 21.3% 28-Apr-01 09:50:04 +bullet.h
  592.      150     118 21.3% 28-Apr-01 09:50:04 +cardres.h
  593.      156     122 21.7% 28-Apr-01 09:50:04 +chunkyppc.h
  594.      133     108 18.7% 28-Apr-01 09:50:04 +cia.h
  595.      161     123 23.6% 28-Apr-01 09:50:04 +colorwheel.h
  596.      156     121 22.4% 28-Apr-01 09:50:06 +commodities.h
  597.      151     117 22.5% 28-Apr-01 09:50:06 +console.h
  598.      185     130 29.7% 28-Apr-01 09:50:06 +cybergraphics.h
  599.      157     122 22.2% 28-Apr-01 09:50:06 +datatypes.h
  600.      138     112 18.8% 28-Apr-01 09:50:06 +disk.h
  601.      153     118 22.8% 28-Apr-01 09:50:06 +diskfont.h
  602.      136     111 18.3% 28-Apr-01 09:50:06 +dos.h
  603.      149     117 21.4% 28-Apr-01 09:50:06 +dtclass.h
  604.      169     115 31.9% 28-Apr-01 09:50:06 +exec.h
  605.      157     121 22.9% 28-Apr-01 09:50:06 +expansion.h
  606.      153     119 22.2% 28-Apr-01 09:50:06 +gadtools.h
  607.      148     116 21.6% 28-Apr-01 09:50:06 +graphics.h
  608.      137     111 18.9% 28-Apr-01 09:50:06 +icon.h
  609.      153     119 22.2% 28-Apr-01 09:50:06 +iffparse.h
  610.      141     113 19.8% 28-Apr-01 09:50:06 +input.h
  611.      163     114 30.0% 28-Apr-01 09:50:06 +intuition.h
  612.      145     117 19.3% 28-Apr-01 09:50:06 +keymap.h
  613.      145     116 20.0% 28-Apr-01 09:50:06 +layers.h
  614.      145     114 21.3% 28-Apr-01 09:50:06 +locale.h
  615.      153     120 21.5% 28-Apr-01 09:50:06 +lowlevel.h
  616.      136     111 18.3% 28-Apr-01 09:50:06 +misc.h
  617.      156     121 22.4% 28-Apr-01 09:50:06 +nonvolatile.h
  618.      178     126 29.2% 28-Apr-01 09:50:06 +Picasso96.h
  619.      141     112 20.5% 28-Apr-01 09:50:06 +potgo.h
  620.      155     120 22.5% 28-Apr-01 09:50:06 +ramdrive.h
  621.      153     119 22.2% 28-Apr-01 09:50:06 +realtime.h
  622.      158     124 21.5% 28-Apr-01 09:50:06 +rexxsyslib.h
  623.      162     117 27.7% 28-Apr-01 09:50:06 +rtgmaster.h
  624.      141     113 19.8% 28-Apr-01 09:50:06 +timer.h
  625.      161     119 26.0% 28-Apr-01 09:50:06 +translator.h
  626.      149     117 21.4% 28-Apr-01 09:50:06 +utility.h
  627.      136     113 16.9% 28-Apr-01 09:50:06 +wb.h
  628.      192     138 28.1% 28-Apr-01 09:50:04 +setjmp.h
  629.      390     200 48.7% 28-Apr-01 09:50:04 +signal.h
  630.     1508     538 64.3% 28-Apr-01 09:50:04 +stdarg.h
  631.      396     192 51.5% 28-Apr-01 09:50:04 +stddef.h
  632.     2730     569 79.1% 28-Apr-01 09:50:06 +stdint.h
  633.     4883    1593 67.3% 28-Apr-01 09:50:04 +stdio.h
  634.     2236     686 69.3% 28-Apr-01 09:50:06 +stdlib.h
  635.     2708     595 78.0% 28-Apr-01 09:50:06 +string.h
  636.     1028     391 61.9% 28-Apr-01 09:50:06 +time.h
  637.  1223240   94643 92.2% 23-Jun-01 09:25:14 +libamiga.a
  638.  1196376   93700 92.1% 23-Jun-01 09:25:14 +libamigas.a
  639.   152118    9308 93.8% 23-Jun-01 09:25:14 +libauto.a
  640.   137274    9490 93.0% 23-Jun-01 09:25:16 +libautos.a
  641.     8540    2274 73.3% 02-May-01 20:16:08 +libextra.a
  642.     7916    1976 75.0% 25-Jun-01 20:49:52 +libextras.a
  643.    68220   32787 51.9% 23-Jun-01 09:25:14 +libm.a
  644.    12916    3264 74.7% 23-Jun-01 09:25:14 +libpowerup.so.46.19
  645.   116720   25243 78.3% 23-Jun-01 09:25:14 +libvc.a
  646.   113594   24303 78.6% 25-Jun-01 20:49:52 +libvcs.a
  647.      912     407 55.3% 02-May-01 20:16:08 +minstart.o
  648.     2772    1304 52.9% 02-May-01 20:16:08 +startup.o
  649.      320     205 35.9% 28-Apr-01 09:49:58 +assert.h
  650.      845     287 66.0% 28-Apr-01 09:49:58 +ctype.h
  651.     5459    1896 65.2% 28-Apr-01 09:49:58 +errno.h
  652.      322     174 45.9% 28-Apr-01 09:49:58 +extra.h
  653.     1067     342 67.9% 28-Apr-01 09:49:58 +float.h
  654.     2539     467 81.6% 28-Apr-01 09:50:00 +amigamesa_protos.h
  655.     5329     693 86.9% 28-Apr-01 09:50:00 +gle_protos.h
  656.    12424    1225 90.1% 28-Apr-01 09:50:00 +glsmap_protos.h
  657.    27142    2771 89.7% 28-Apr-01 09:50:00 +glut_protos.h
  658.    15013    1885 87.4% 28-Apr-01 09:50:00 +glu_protos.h
  659.   123728   10544 91.4% 28-Apr-01 09:50:00 +gl_protos.h
  660.    13965    2092 85.0% 28-Apr-01 09:50:00 +powerpc_protos.h
  661.    20312    2576 87.3% 28-Apr-01 09:50:00 +Warp3D_protos.h
  662.      678     280 58.7% 28-Apr-01 09:49:58 +limits.h
  663.      969     358 63.0% 28-Apr-01 09:49:58 +locale.h
  664.      680     248 63.5% 28-Apr-01 09:49:58 +math.h
  665.     1161     289 75.1% 28-Apr-01 09:49:58 +all.h
  666.      161     126 21.7% 28-Apr-01 09:49:58 +amigaguide.h
  667.      158     122 22.7% 28-Apr-01 09:49:58 +amigamesa.h
  668.      133     108 18.7% 28-Apr-01 09:49:58 +asl.h
  669.      157     120 23.5% 28-Apr-01 09:49:58 +battclock.h
  670.      149     117 21.4% 28-Apr-01 09:49:58 +battmem.h
  671.      145     114 21.3% 28-Apr-01 09:49:58 +bullet.h
  672.      150     118 21.3% 28-Apr-01 09:49:58 +cardres.h
  673.      156     122 21.7% 28-Apr-01 09:49:58 +chunkyppc.h
  674.      133     108 18.7% 28-Apr-01 09:49:58 +cia.h
  675.      161     123 23.6% 28-Apr-01 09:49:58 +colorwheel.h
  676.      156     121 22.4% 28-Apr-01 09:49:58 +commodities.h
  677.      151     117 22.5% 28-Apr-01 09:49:58 +console.h
  678.      185     130 29.7% 28-Apr-01 09:49:58 +cybergraphics.h
  679.      157     122 22.2% 28-Apr-01 09:49:58 +datatypes.h
  680.      138     112 18.8% 28-Apr-01 09:49:58 +disk.h
  681.      153     118 22.8% 28-Apr-01 09:49:58 +diskfont.h
  682.      136     111 18.3% 28-Apr-01 09:49:58 +dos.h
  683.      149     117 21.4% 28-Apr-01 09:49:58 +dtclass.h
  684.      169     115 31.9% 28-Apr-01 09:49:58 +exec.h
  685.      157     121 22.9% 28-Apr-01 09:49:58 +expansion.h
  686.      153     119 22.2% 28-Apr-01 09:49:58 +gadtools.h
  687.      137     110 19.7% 28-Apr-01 09:49:58 +gl.h
  688.      141     112 20.5% 28-Apr-01 09:49:58 +gle.h
  689.      153     118 22.8% 28-Apr-01 09:49:58 +glsmap.h
  690.      141     112 20.5% 28-Apr-01 09:49:58 +glu.h
  691.      145     114 21.3% 28-Apr-01 09:49:58 +glut.h
  692.      148     116 21.6% 28-Apr-01 09:49:58 +graphics.h
  693.      137     111 18.9% 28-Apr-01 09:49:58 +icon.h
  694.      153     119 22.2% 28-Apr-01 09:49:58 +iffparse.h
  695.      141     113 19.8% 28-Apr-01 09:49:58 +input.h
  696.      163     114 30.0% 28-Apr-01 09:49:58 +intuition.h
  697.      145     117 19.3% 28-Apr-01 09:49:58 +keymap.h
  698.      145     116 20.0% 28-Apr-01 09:49:58 +layers.h
  699.      145     114 21.3% 28-Apr-01 09:49:58 +locale.h
  700.      153     120 21.5% 28-Apr-01 09:49:58 +lowlevel.h
  701.      136     111 18.3% 28-Apr-01 09:49:58 +misc.h
  702.      156     121 22.4% 28-Apr-01 09:49:58 +nonvolatile.h
  703.      178     126 29.2% 28-Apr-01 09:49:58 +Picasso96.h
  704.      141     112 20.5% 28-Apr-01 09:49:58 +potgo.h
  705.      183     125 31.6% 28-Apr-01 09:49:58 +powerpc.h
  706.      155     120 22.5% 28-Apr-01 09:49:58 +ramdrive.h
  707.      153     119 22.2% 28-Apr-01 09:50:00 +realtime.h
  708.      158     124 21.5% 28-Apr-01 09:50:00 +rexxsyslib.h
  709.      162     117 27.7% 28-Apr-01 09:49:58 +rtgmaster.h
  710.      141     113 19.8% 28-Apr-01 09:50:00 +timer.h
  711.      161     119 26.0% 28-Apr-01 09:50:00 +translator.h
  712.      149     117 21.4% 28-Apr-01 09:50:00 +utility.h
  713.      611     328 46.3% 28-Apr-01 09:49:58 +Warp3D.h
  714.      136     113 16.9% 28-Apr-01 09:49:58 +wb.h
  715.      192     138 28.1% 28-Apr-01 09:50:00 +setjmp.h
  716.      390     200 48.7% 28-Apr-01 09:49:58 +signal.h
  717.      933     469 49.7% 28-Apr-01 09:49:58 +stdarg.h
  718.      396     192 51.5% 28-Apr-01 09:49:58 +stddef.h
  719.     2730     569 79.1% 28-Apr-01 09:50:00 +stdint.h
  720.     5217    1586 69.5% 28-Apr-01 09:49:58 +stdio.h
  721.     2242     687 69.3% 28-Apr-01 09:50:00 +stdlib.h
  722.     2769     613 77.8% 28-Apr-01 09:50:00 +string.h
  723.     1028     391 61.9% 28-Apr-01 09:49:58 +time.h
  724.   541800   62504 88.4% 02-May-01 20:16:18 +amiga.lib
  725.    77972    6123 92.1% 23-Jun-01 09:25:50 +auto.lib
  726.     4016    1486 62.9% 02-May-01 20:16:18 +extra.lib
  727.   121128   11661 90.3% 23-Jun-01 09:25:50 +gl.lib
  728.     3612     844 76.6% 23-Jun-01 09:25:50 +gle.lib
  729.    10120    1421 85.9% 23-Jun-01 09:25:50 +glsmap.lib
  730.    53396   21849 59.0% 23-Jun-01 09:25:50 +m.lib
  731.    61956   44328 28.4% 02-May-01 20:16:18 +ppcmath.lib
  732.    97708   29210 70.1% 23-Jun-01 09:25:50 +vc.lib
  733.     1260     772 38.7% 02-May-01 20:16:18 +warpup.o
  734.      276      79 71.3% 02-May-01 20:16:18 +x.o
  735.     5568    2387 57.1% 27-Jun-01 21:33:54 +vbcc.readme
  736. -------- ------- ----- --------- --------
  737. 15186179 3675156 75.7% 05-Jul-101 15:46:12   553 files
  738.